home *** CD-ROM | disk | FTP | other *** search
/ Digital Photo Album: Houko Kuwashima / Digital Photo Album: Houko Kuwashima.iso / making.dxr / 00002.ls < prev    next >
Encoding:
Text File  |  1998-10-09  |  1.3 KB  |  37 lines

  1. on exitFrame
  2.   global captioncast, moviebtncast, moviecast, photocast
  3.   if rollOver(7) or rollOver(8) or rollOver(9) or rollOver(10) then
  4.     set tempmembernum to the memberNum of sprite rollOver()
  5.     set tempmembername to the name of member tempmembernum
  6.     set targetname to tempmembername & "_cast"
  7.     set the castNum of sprite captioncast to member targetname
  8.     set the visible of sprite captioncast to 1
  9.     cursor([6, 7])
  10.   else
  11.     if rollOver(14) or rollOver(15) or rollOver(16) or rollOver(31) or rollOver(32) or rollOver(33) or rollOver(35) or rollOver(36) or rollOver(44) or rollOver(45) or rollOver(42) or rollOver(43) then
  12.       if rollOver(42) or rollOver(43) then
  13.         if the visible of sprite moviebtncast = 0 then
  14.           cursor(-1)
  15.         else
  16.           cursor([4, 5])
  17.         end if
  18.       else
  19.         cursor([4, 5])
  20.       end if
  21.       set the visible of sprite captioncast to 0
  22.     else
  23.       cursor(-1)
  24.       set the visible of sprite captioncast to 0
  25.     end if
  26.   end if
  27.   if (the visible of sprite moviecast = 1) and not soundBusy(2) then
  28.     if the movieRate of sprite moviecast = 0 then
  29.       puppetSound(2, "report.aif")
  30.     end if
  31.   end if
  32.   if (the visible of sprite photocast = 1) and not soundBusy(2) then
  33.     puppetSound(2, "report.aif")
  34.   end if
  35.   go(the frame)
  36. end
  37.